python数据类型(四) 发表于 2018-10-16 | 更新于 2019-03-11 | 分类于 python基础 枚举类型 枚举类型12345a = enumerate(['a','b','c'])type(a)for i in a: print(type(i)) print(i)